home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 3 of 3 / CHAPTE15 / PLAY.C < prev    next >
C/C++ Source or Header  |  1996-04-28  |  6KB  |  195 lines

  1.  
  2. #include <stdio.h>
  3. #include <windows.h>
  4. #include "Play.h"
  5.  
  6. #if defined (WIN32)
  7.     #define IS_WIN32 TRUE
  8. #else
  9.     #define IS_WIN32 FALSE
  10. #endif
  11.  
  12. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  13. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  14. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  15.  
  16. HINSTANCE hInst;   // current instance
  17.  
  18. LPCTSTR lpszAppName = "MyApp";
  19. LPCTSTR lpszTitle   = "PlaySound()"; 
  20.  
  21. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  22.  
  23.  
  24. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  25.                       LPTSTR lpCmdLine, int nCmdShow)
  26. {
  27.    MSG      msg;
  28.    HWND     hWnd; 
  29.    WNDCLASS wc;
  30.  
  31.    wc.style         = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
  32.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  33.    wc.cbClsExtra    = 0;                      
  34.    wc.cbWndExtra    = 0;                      
  35.    wc.hInstance     = hInstance;              
  36.    wc.hIcon         = LoadIcon (hInstance, lpszAppName); 
  37.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  38.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  39.    wc.lpszMenuName  = lpszAppName;              
  40.    wc.lpszClassName = lpszAppName;              
  41.  
  42.    if ( IS_WIN95 )
  43.    {
  44.       if ( !RegisterWin95( &wc ) )
  45.          return( FALSE );
  46.    }
  47.    else if ( !RegisterClass( &wc ) )
  48.       return( FALSE );
  49.  
  50.    hInst = hInstance; 
  51.  
  52.    hWnd = CreateWindow( lpszAppName, 
  53.                         lpszTitle,    
  54.                         WS_OVERLAPPEDWINDOW, 
  55.                         CW_USEDEFAULT, 0, 
  56.                         CW_USEDEFAULT, 0,  
  57.                         NULL,              
  58.                         NULL,              
  59.                         hInstance,         
  60.                         NULL               
  61.                       );
  62.  
  63.    if ( !hWnd ) 
  64.       return( FALSE );
  65.  
  66.    ShowWindow( hWnd, nCmdShow ); 
  67.    UpdateWindow( hWnd );         
  68.  
  69.    while( GetMessage( &msg, NULL, 0, 0) )   
  70.    {
  71.       TranslateMessage( &msg ); 
  72.       DispatchMessage( &msg );  
  73.    }
  74.  
  75.    return( msg.wParam ); 
  76. }
  77.  
  78.  
  79. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  80. {
  81.     WNDCLASSEX wcex;
  82.  
  83.    wcex.style         = lpwc->style;
  84.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  85.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  86.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  87.    wcex.hInstance     = lpwc->hInstance;
  88.    wcex.hIcon         = lpwc->hIcon;
  89.    wcex.hCursor       = lpwc->hCursor;
  90.    wcex.hbrBackground = lpwc->hbrBackground;
  91.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  92.    wcex.lpszClassName = lpwc->lpszClassName;
  93.  
  94.    // Added elements for Windows 95.
  95.    //...............................
  96.    wcex.cbSize = sizeof(WNDCLASSEX);
  97.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  98.                             IMAGE_ICON, 16, 16,
  99.                             LR_DEFAULTCOLOR );
  100.             
  101.    return RegisterClassEx( &wcex );
  102. }
  103.  
  104.  
  105. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  106. {
  107.    switch( uMsg )
  108.    {
  109.       case WM_COMMAND :
  110.               switch( LOWORD( wParam ) )
  111.               {
  112.                  case IDM_TEST :
  113.                         {
  114.                            // play sound from resource asynchronously and will loop
  115.                            // repeatedly until return from the MessageBox.  The entry
  116.                            // in the RC file must be as follows:
  117.                            //    TESTWAVE WAVE "test.wav"
  118.                            //........................................................
  119.  
  120.                            PlaySound("TESTWAVE", hInst, SND_RESOURCE|SND_ASYNC|SND_LOOP);
  121.                            
  122.                            // wait until user responds
  123.                            //.........................
  124.  
  125.                            MessageBox(hWnd, "The sound will continue to loop"
  126.                                             " until the OK button is pressed...",
  127.                                       "Test", MB_OK);
  128.  
  129.                            // kill all waveform output from this application
  130.                            //...............................................
  131.  
  132.                            PlaySound(NULL, hInst, SND_PURGE);
  133.  
  134.                            // play system defined event sound synchronously and return
  135.                            //.........................................................
  136.  
  137.                            PlaySound("SystemExclamation", NULL, SND_ALIAS|SND_SYNC);
  138.                         }
  139.                         break;
  140.  
  141.                  case IDM_ABOUT :
  142.                         DialogBox( hInst, "AboutBox", hWnd, About );
  143.                         break;
  144.  
  145.                  case IDM_EXIT :
  146.                         DestroyWindow( hWnd );
  147.                         break;
  148.               }
  149.               break;
  150.  
  151.       case WM_DESTROY :
  152.               PostQuitMessage(0);
  153.               break;
  154.  
  155.       default :
  156.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  157.    }
  158.  
  159.    return( 0L );               
  160. }
  161.  
  162.  
  163. LRESULT CALLBACK About( HWND hDlg,           
  164.                         UINT message,        
  165.                         WPARAM wParam,       
  166.                         LPARAM lParam)
  167. {
  168.    switch (message) 
  169.    {
  170.        case WM_INITDIALOG: 
  171.                return (TRUE);
  172.  
  173.        case WM_COMMAND:                              
  174.                if (   LOWORD(wParam) == IDOK         
  175.                    || LOWORD(wParam) == IDCANCEL)    
  176.                {
  177.                        EndDialog(hDlg, TRUE);        
  178.                        return (TRUE);
  179.                }
  180.                break;
  181.    }
  182.  
  183.    return (FALSE); 
  184. }
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.